home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tcl / tkerror.tcl < prev    next >
Encoding:
Text File  |  1992-06-26  |  174 b   |  8 lines

  1. # This file contains a default version of the tkError procedure.  It
  2. # just prints out a stack trace.
  3.  
  4. proc tkerror err {
  5.     global errorInfo
  6.     puts stdout "$errorInfo"
  7. }
  8.